home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / pcplus2.zip / GENIE.ASP < prev    next >
Text File  |  1988-01-01  |  1KB  |  30 lines

  1. ;*************************************************************************
  2. ;* GENIE.ASP  (C) 1987 DATASTORM TECHNOLOGIES, INC.                      *
  3. ;*                                                                       *
  4. ;* A sample ASPECT script file for logging onto GEnie via local GENie    *
  5. ;* access number.                                                        *
  6. ;*                                                                       *
  7. ;*************************************************************************
  8.  
  9. ASSIGN S0 "555-1234"                ; Insert your local GEnie # here
  10. ASSIGN S1 "uuuuuuuu,pppppp"         ; Insert your ID and password here
  11.  
  12. EMULATE ANSI               ; Select terminal emulation
  13.  
  14. IF NOT LINKED
  15.    CLEAR
  16.    MESSAGE "Calling GEnie"
  17.    SET BAUD 1200                    ; Set line settings
  18.    SET PARITY EVEN
  19.    SET DATABITS 7
  20.    SET DUPLEX HALF
  21.    MDIAL S0                         ; Dial GEnie
  22. ENDIF
  23.  
  24. PAUSE 4                             ; Pause
  25. TRANSMIT "HHH^M"                    ; Send logon sequence
  26. WAITFOR "U#="                       ; Wait for prompt
  27. TRANSMIT S1                         ; Send user id/password
  28. TRANSMIT "^M"                       ; Send CR
  29.  
  30.